home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
util
/
boot
/
appvm.lha
/
AppVM
/
vmemory.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-04-04
|
644b
|
28 lines
#ifndef EXEC_VMEMORY_H
#define EXEC_VMEMORY_H
/*
** $Filename: exec/vmemory.h $
** $Release: X.VM $
** $Revision: XX.XX $
** $Date: 92/XX/XX $
**
** Definitions and structures used by the VM memory allocation system
**
** (C) Copyright 1992 Laurence Vanhelsuwé
** All Rights Reserved
*/
#ifndef EXEC_NODES_H
#include "exec/nodes.h"
#endif /* EXEC_NODES_H */
/*----- Memory Requirement Types ---------------------------*/
/*----- See the AllocMem() documentation for details--------*/
#define MEMF_VM (1L<<31) /* Ask for VIRTUAL MEMORY */
#define VMEM_PAGESIZE 32768
#define VMEM_PAGEMASK (VMEM_PAGESIZE-1)
#endif /* EXEC_VMEMORY_H */